home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / makefile < prev    next >
Makefile  |  1996-01-30  |  335b  |  14 lines

  1. #
  2. # Makefile for script V1.1 using Turbo C 2.0
  3. # I don't think this makefile will work with the make utility
  4. # provided with Turbo C. Use a better one.
  5. #
  6. AS = tasm
  7. ASFLAGS= /mx
  8. CC= tcc
  9. CFLAGS= -mt -M
  10. LIBDIR= \tc\lib
  11.  
  12. script.com:    script.obj int21.obj
  13.     tlink ${LIBDIR}\c0t script int21 /t/c/m,script,script,${LIBDIR}\cs.lib
  14.